home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / AEA / Source / Sources / Event Handlers / AEAHandlerQuit.cc < prev   
Encoding:
C/C++ Source or Header  |  2000-06-24  |  419 b   |  25 lines

  1. /*    =================
  2.  *    AEAHandlerQuit.cc
  3.  *    =================
  4.  *    
  5.  *    Implemented by AEAHandlerQuit.cc
  6.  */
  7.  
  8. #include "AEADebugging.h"
  9.  
  10. #include "AEAHandlerQuit.hh"
  11.  
  12. #include "AEADescAppleEvent.hh"
  13.  
  14.  
  15. AEAHandlerQuit::AEAHandlerQuit()
  16. : AEAHandler(kCoreEventClass, kAEQuitApplication)
  17. {
  18. }
  19.  
  20. void
  21. AEAHandlerQuit::HandleEventSelf(const AEADescAppleEvent &inAppleEvent, AEADescAppleEvent &outReply)
  22. {
  23.     NotifyAppQuitEvent();
  24. }
  25.